home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / magazine / executive_v2.00 / data / developers.lzx / SysInfo / examples / test / Makefile < prev    next >
Makefile  |  2002-04-15  |  450b  |  33 lines

  1. #
  2. # GCC makefile for SysInfo.library/test
  3. #
  4. # This file is public domain.
  5. #
  6. # Author: Petri Nordlund <petrin@megabaud.fi>
  7. #
  8. # $Id: MF.compile 1.5 1996/09/05 23:20:05 petrin Exp petrin $
  9. #
  10.  
  11. CFLAGS = -O
  12.  
  13.  
  14. SHELL = USR:BIN/sh
  15.  
  16. # Source files
  17. SRCS   = test.c
  18.  
  19. # Object files
  20. OBJS   = $(SRCS:.c=.o)
  21.  
  22.  
  23. all : test
  24.  
  25. test : test.o
  26.     gcc $(CFLAGS) -o test $^ -lamiga -lauto -lsysinfo
  27.  
  28. test.o : test.c defs.h
  29.     gcc $(CFLAGS) -c test.c
  30.  
  31. clean:
  32.     -delete test test.o
  33.